home *** CD-ROM | disk | FTP | other *** search
/ CICA 1995 August / CICA - The Ultimate Collection of Shareware for Windows (Disc 2) (August 1995).iso / disc2 / patches / symantec / rtlinc.exe / SOUND.H < prev    next >
C/C++ Source or Header  |  1993-05-18  |  475b  |  24 lines

  1. /*_ sound.h   Sat Jun  3 1989   Modified by: Walter Bright */
  2. /* Copyright (C) 1988-1989 by Walter Bright    */
  3. /* All Rights Reserved                */
  4. /* Written by Walter Bright            */
  5.  
  6. #if __cplusplus
  7. extern "C" {
  8. #endif
  9.  
  10. #if __OS2__ || __NT__
  11. void __cdecl sound_note(int frequency,int duration);
  12. #else
  13. void __cdecl sound_tone(int cycles,int uptime,int dntime);
  14. #endif
  15.  
  16. void __cdecl sound_beep(int freq);
  17. void __cdecl sound_click(void);
  18.  
  19. #if __cplusplus
  20. }
  21. #endif
  22.  
  23.  
  24.